home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / include / netdb.h < prev    next >
C/C++ Source or Header  |  1989-06-23  |  2KB  |  75 lines

  1. /*
  2.  * Copyright (c) 1980,1983,1988 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that this notice is preserved and that due credit is given
  7.  * to the University of California at Berkeley. The name of the University
  8.  * may not be used to endorse or promote products derived from this
  9.  * software without specific prior written permission. This software
  10.  * is provided ``as is'' without express or implied warranty.
  11.  *
  12.  *    @(#)netdb.h    5.9 (Berkeley) 4/5/88
  13.  */
  14.  
  15. #ifndef _NETDB
  16. #define _NETDB
  17.  
  18. /*
  19.  * Structures returned by network
  20.  * data base library.  All addresses
  21.  * are supplied in host order, and
  22.  * returned in network order (suitable
  23.  * for use in system calls).
  24.  */
  25. struct    hostent {
  26.     char    *h_name;    /* official name of host */
  27.     char    **h_aliases;    /* alias list */
  28.     int    h_addrtype;    /* host address type */
  29.     int    h_length;    /* length of address */
  30.     char    **h_addr_list;    /* list of addresses from name server */
  31. #define    h_addr    h_addr_list[0]    /* address, for backward compatiblity */
  32. };
  33.  
  34. /*
  35.  * Assumption here is that a network number
  36.  * fits in 32 bits -- probably a poor one.
  37.  */
  38. struct    netent {
  39.     char        *n_name;    /* official name of net */
  40.     char        **n_aliases;    /* alias list */
  41.     int        n_addrtype;    /* net address type */
  42.     unsigned long    n_net;        /* network # */
  43. };
  44.  
  45. struct    servent {
  46.     char    *s_name;    /* official service name */
  47.     char    **s_aliases;    /* alias list */
  48.     int    s_port;        /* port # */
  49.     char    *s_proto;    /* protocol to use */
  50. };
  51.  
  52. struct    protoent {
  53.     char    *p_name;    /* official protocol name */
  54.     char    **p_aliases;    /* alias list */
  55.     int    p_proto;    /* protocol # */
  56. };
  57.  
  58. struct hostent    *gethostbyname(), *gethostbyaddr(), *gethostent();
  59. struct netent    *getnetbyname(), *getnetbyaddr(), *getnetent();
  60. struct servent    *getservbyname(), *getservbyport(), *getservent();
  61. struct protoent    *getprotobyname(), *getprotobynumber(), *getprotoent();
  62.  
  63. /*
  64.  * Error return codes from gethostbyname() and gethostbyaddr()
  65.  * (left in extern int h_errno).
  66.  */
  67.  
  68. #define    HOST_NOT_FOUND    1 /* Authoritative Answer Host not found */
  69. #define    TRY_AGAIN    2 /* Non-Authoritive Host not found, or SERVERFAIL */
  70. #define    NO_RECOVERY    3 /* Non recoverable errors, FORMERR, REFUSED, NOTIMP */
  71. #define    NO_DATA        4 /* Valid name, no data record of requested type */
  72. #define    NO_ADDRESS    NO_DATA        /* no address, look for MX record */
  73.  
  74. #endif /* _NETDB */
  75.